html {
  --primary: #1d3c6b;
  --primary-dark: #0d192b;
  --primary-text: #5a5e63;
  --light-text: #787cad;
  --dark-text: #242424;
  --on-dark-text: white;
  --dark-border: #aca8d4;
  --light-border: #e0e0e0;
  --background: #eef3f7;
  --bright-background: white;
  --soft-highlight: #f5f5f5;
  --link: black;
  --new-ams: "New Amsterdam", "Lora", system-ui, sans-serif;
  --font-size-xxxl: 3rem;
  --font-size-xxl: 2.25rem;
  --font-size-xl: 1.5rem;
  --font-size-lg: 1.2rem;
  --font-size-md: 1rem;
  --font-size-sm: 0.875rem;
  --font-size-xs: 0.75rem;
  --line-height-xxxl: 2.5;
  --line-height-xxl: 2;
  --line-height-xl: 1.75;
  --line-height-lg: 1.5;
  --line-height-md: 1.25;
  --line-height-sm: 1;
  --line-height-xs: 0.875;
  --space-size-xxxl: 6rem;
  --space-size-xxl: 4.5rem;
  --space-size-xl: 3rem;
  --space-size-lg: 2rem;
  --space-size-md: 1.5rem;
  --space-size-sm: 1rem;
  --space-size-xs: 0.5rem;
  --large-border-radius: 10px;
  --medium-border-radius: 5px;
  --small-border-radius: 3px;
}

/* Source: https://piccalil.li/blog/a-more-modern-css-reset/ */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  margin: 0;
  padding: 0;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core body defaults */
body {
  line-height: 1.5;
  margin: 0;
}

/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1, h2,
h3, h4 {
  text-wrap: balance;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  font: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

html {
  background: var(--background);
}

.pantalla {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100dvh;
}

p {
  line-height: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 0;
}

pre code {
  display: block;
  padding: 0.5rem;
  text-wrap: wrap;
}

ul, ol {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

code {
  vertical-align: bottom;
}

body {
  position: relative;
}

a {
  color: var(--link);
  text-underline-offset: 0.2ex;
  transition: text-decoration-thickness 200ms ease;
  text-decoration-thickness: 1px;
}
a:hover {
  text-decoration-thickness: 2px;
}

.dark {
  background: var(--primary);
}
.dark, .dark a {
  color: var(--on-dark-text);
}

main > section {
  margin-top: var(--space-size-xxxl);
  margin-bottom: var(--space-size-xxxl);
}

main > section.vm-half {
  margin-top: var(--space-size-xl);
  margin-bottom: var(--space-size-xl);
}

main > section.pull-top {
  margin-top: 0;
}

main > section.pull-bottom {
  margin-bottom: 0;
}

.character {
  position: relative;
}

.character .chryon {
  position: absolute;
  top: 0;
  left: 0;
}

html {
  font-family: "Lora", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

p, li {
  color: var(--primary-text);
  font-size: var(--font-size-lg);
  line-height: var(--line-height-lg);
}

h1, h2, h3, h4, h5, h6 {
  margin-top: var(--space-size-md);
  line-height: var(--space-size-md);
}
h1 + p, h1 + ul, h1 + ol, h1 + blockquote, h1 + table, h2 + p, h2 + ul, h2 + ol, h2 + blockquote, h2 + table, h3 + p, h3 + ul, h3 + ol, h3 + blockquote, h3 + table, h4 + p, h4 + ul, h4 + ol, h4 + blockquote, h4 + table, h5 + p, h5 + ul, h5 + ol, h5 + blockquote, h5 + table, h6 + p, h6 + ul, h6 + ol, h6 + blockquote, h6 + table {
  margin-top: var(--space-size-xs);
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: var(--primary);
  text-decoration: none;
}
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover {
  text-decoration: underline;
}

h1, .u-step-1 {
  font-family: var(--new-ams);
  font-size: var(--font-size-xxxl);
  line-height: var(--line-height-sm);
  margin-bottom: var(--space-size-md);
}

h2, .u-step-2 {
  color: var(--primary);
  font-family: var(--new-ams);
  font-size: var(--font-size-xxl);
  line-height: var(--line-height-sm);
  margin-bottom: var(--space-size-sm);
}

section.intro {
  text-align: center;
}

h3, .u-step-3 {
  font-size: var(--font-size-xl);
  line-height: var(--line-height-md);
}

h4, .u-step-4 {
  font-size: var(--font-size-lg);
}

h5, .u-step-5 {
  font-size: var(--font-size-md);
}

h6, .u-step-6 {
  font-size: var(--font-size-sm);
}

.dropdown > button.focus-rotate svg {
  transition: transform 250ms ease;
}
.dropdown:focus-within:not(.dropdown-js) > .dropdown-menu, .dropdown.dropdown-js.is-active > .dropdown-menu {
  visibility: visible;
  max-height: none;
}
.dropdown:focus-within:not(.dropdown-js) > button.focus-rotate svg, .dropdown.dropdown-js.is-active > button.focus-rotate svg {
  transform: rotate(90deg);
}

.dropdown-menu {
  visibility: hidden;
  max-height: 0;
}

.wrapper {
  margin-inline: auto;
  padding-inline: 1rem;
  max-width: 82rem;
  margin-top: 0;
}

.v-center {
  display: flex;
  align-items: center;
}

.center-text {
  text-align: center;
}

.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: auto;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}

article.embed,
section,
.spacer {
  margin-bottom: var(--space-size-xl);
}

.pusher {
  margin-top: var(--space-size-xl);
}

.tight-container {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.icon {
  width: 1.4rem;
  height: 1.4rem;
  background: none;
  border: 0;
  cursor: pointer;
  display: inline-block;
  padding: 0;
  border-radius: 20em;
  transition: background 100ms ease-out;
}
.icon svg {
  transition: opacity 300ms ease-out;
  padding: 0.3rem;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
}
.icon.goodreads svg {
  padding: 0.4375rem;
}
.icon:hover {
  background: rgba(0, 0, 0, 0.2);
}
.icon:hover svg {
  opacity: 1;
}

.dark .icon:hover {
  background: rgba(255, 255, 255, 0.2);
}

.highlight-video {
  aspect-ratio: 2.39;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.card {
  background: var(--bright-background);
  position: relative;
  border-radius: var(--small-border-radius);
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.card .media {
  width: 100%;
  overflow: hidden;
}
.card .media img {
  object-fit: cover;
  object-position: 50% 12.5%;
  height: 200px;
  width: 100%;
  transition: transform 250ms ease;
}
.card:hover .media img {
  transform: scale(1.1);
}
.card .text {
  padding: var(--space-size-sm);
}
.card .text h3 {
  margin-top: 0;
}
.card .text h3 a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  column-gap: var(--space-size-sm);
  row-gap: var(--space-size-sm);
}

footer.main {
  padding-bottom: var(--space-size-xs);
}
footer.main a {
  text-decoration: none;
  opacity: 0.8;
}
footer.main a:hover {
  opacity: 1;
  text-decoration: underline;
}
footer.main .top {
  margin: var(--space-size-lg) 0 var(--space-size-sm);
}
footer.main .top h4 {
  margin-bottom: var(--space-size-sm);
}
footer.main .top nav {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
footer.main .top nav a {
  display: block;
}
footer.main .bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  font-size: var(--font-size-sm);
}
footer.main .bottom div {
  margin-block-start: var(--space-size-sm);
}
footer.main .bottom nav {
  display: flex;
  column-gap: 1rem;
  align-items: center;
  margin-block-start: var(--space-size-sm);
}
footer.main .bottom .socials {
  display: flex;
  justify-content: end;
  column-gap: 0.5rem;
}
footer.main .bottom .socials .icon {
  width: 2rem;
  height: 2rem;
}
footer.main .bottom .socials .icon svg {
  stroke: var(--on-dark-text);
}

.split-with-image {
  display: flex;
  flex-wrap: wrap;
  background: var(--bright-background);
  border-radius: var(--small-border-radius);
}
.split-with-image .col {
  flex-basis: 315px;
  flex-grow: 1;
}
.split-with-image .col.img-cover:first-child img {
  border-top-left-radius: var(--small-border-radius);
  border-bottom-left-radius: var(--small-border-radius);
}
.split-with-image .col.img-cover:last-child img {
  border-top-right-radius: var(--small-border-radius);
  border-bottom-right-radius: var(--small-border-radius);
}
.split-with-image .content {
  padding: 2rem;
}
.split-with-image .img-cover picture {
  height: 100%;
}
.split-with-image .img-cover img {
  object-fit: cover;
  object-position: center;
  min-height: 400px;
  height: 100%;
  width: 100%;
  aspect-ratio: 1/1;
}
.split-with-image.reverse .img-cover {
  order: 2;
}

.button,
input[type=email],
input[type=submit],
form label {
  font-size: var(--font-size-md);
}

input[type=email],
form label {
  margin-right: var(--space-size-xs);
}

.button,
input[type=email],
input[type=submit] {
  display: inline-block;
  padding: var(--space-size-sm) var(--space-size-sm);
}

form label,
input[type=email],
input[type=submit] {
  margin-top: var(--space-size-xs);
}

.button, input[type=submit] {
  background: var(--primary);
  border: 0;
  border-radius: var(--small-border-radius);
  box-shadow: inset 0 0 3rem var(--primary);
  color: #ffe39c;
  cursor: pointer;
  font-weight: bold;
  text-decoration: none;
  text-shadow: 0 0 0.75rem hsla(43, 99%, 53%, 0.5);
  text-transform: uppercase;
  transition-property: background, color, box-shadow;
  transition-duration: 200ms;
  transition-timing-function: ease-out;
}
.button:hover, input[type=submit]:hover {
  color: #febc11;
  box-shadow: inset 0 0 3rem var(--primary-dark);
  text-shadow: 0 0 1.5rem #561848;
}
.button.push-top, input[type=submit].push-top {
  margin-top: var(--space-size-sm);
}

.stats,
.retailers {
  container-type: inline-size;
  container-name: stats-container;
}
.stats dl,
.stats ul,
.retailers dl,
.retailers ul {
  display: grid;
  background: var(--primary);
  color: var(--on-dark-text);
  border: 1px solid #333;
  width: 100%;
  padding: var(--space-size-sm) var(--space-size-lg);
  border-radius: var(--large-border-radius);
  margin-top: 0;
}
.stats dl .retailer,
.stats dl .stat,
.stats ul .retailer,
.stats ul .stat,
.retailers dl .retailer,
.retailers dl .stat,
.retailers ul .retailer,
.retailers ul .stat {
  padding: var(--space-size-lg) 0;
}
.stats dl .stat,
.stats ul .stat,
.retailers dl .stat,
.retailers ul .stat {
  display: flex;
  flex-direction: column-reverse;
  flex-grow: 1;
}
.stats dl,
.retailers dl {
  grid-template-columns: 1fr;
}
.stats ul,
.retailers ul {
  grid-template-columns: 1fr;
}
.stats dd,
.retailers dd {
  margin-left: 0;
  font-size: var(--font-size-xxl);
  text-align: center;
  line-height: var(--line-height-md);
}
.stats dt,
.stats li,
.retailers dt,
.retailers li {
  text-align: center;
}
.stats li,
.stats li a,
.retailers li,
.retailers li a {
  color: var(--on-dark-text);
  font-weight: bold;
}
.stats li,
.retailers li {
  list-style: none;
}

@container stats-container (min-width: 450px) {
  .stats dl,
  .retailers ul {
    grid-template-columns: repeat(2, 1fr);
  }
  .retailers ul {
    gap: var(--space-size-md);
  }
}
@container stats-container (min-width: 900px) {
  .stats dl {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  .retailers ul {
    grid-template-columns: repeat(5, 1fr);
  }
}
.full-image {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

.full-image-container {
  padding-top: var(--space-size-xs);
  position: relative;
  color: var(--on-dark-text);
  aspect-ratio: 1.85;
}
.full-image-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 350px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, black 80%);
  z-index: 1;
}
.full-image-container .wrapper {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
}
.full-image-container h2, .full-image-container .u-step-2 {
  color: var(--light-text);
}

.events {
  background: var(--bright-background);
  border-radius: var(--small-border-radius);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  position: relative;
  margin-left: auto;
  margin-right: auto;
  margin-top: -50px;
  max-width: 900px;
  padding: var(--space-size-md) 0;
  row-gap: 2em;
  z-index: 2;
}
.events .event {
  text-align: center;
  border-right: 1px solid var(--light-border);
  padding: 0 var(--space-size-sm);
}
.events .event:last-child {
  border-right: 0;
}
.events .event time {
  font-size: var(--font-size-lg);
  color: var(--primary);
}
.events .event h3 {
  margin-top: var(--space-size-xs);
}
.events .event p {
  color: var(--light-text);
  font-size: var(--font-size-md);
}

/* FitVids */
.fluid-width-video-wrapper {
  width: 100%;
  position: relative;
  padding: 0;
  padding-top: 56.25%;
}

.fluid-width-video-wrapper.four-three {
  padding-top: 75%;
}

is-land.fluid-width-video-wrapper {
  display: block;
}

.fluid-width-video-wrapper lite-youtube,
.fluid-width-video-wrapper iframe,
.fluid-width-video-wrapper object,
.fluid-width-video-wrapper embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

is-land lite-youtube {
  background-color: #282828;
  border-radius: 0.5em;
  background-size: cover;
}

.lite-youtube-link {
  --ellipsis-lines: 2;
  margin-top: 0.5em; /* 8px /16 */
  background: url(https://v1.indieweb-avatar.11ty.dev/https%3A%2F%2Fyoutube.com/) no-repeat;
  background-size: 1em auto;
  background-position: 0 0.1875em;
  padding-left: 1.25em;
  line-height: 1.4;
}

lite-youtube {
  max-width: 100% !important;
  background-size: cover;
}

/* Plugin bug: clicking the red youtube play icon in the center would navigate to youtube.com */
lite-youtube:defined .lty-playbtn {
  pointer-events: none;
}

.left {
  text-align: left;
}

nav.main-desktop {
  font-size: 1.2rem;
  font-weight: bold;
  display: flex;
  column-gap: 1rem;
  align-items: center;
}
nav.main-desktop a,
nav.main-desktop button {
  text-decoration: none;
  text-underline-offset: 0.3ex;
  border: 0;
  background: none;
  cursor: pointer;
}
nav.main-desktop button, nav.main-desktop svg {
  color: #ffe39c;
  text-shadow: 0 0 0.75rem #febc11;
  text-transform: uppercase;
}
nav.main-desktop a:hover,
nav.main-desktop button:hover span {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--primary);
}
nav.main-desktop button:hover span,
nav.main-desktop button:hover svg {
  color: #febc11;
}
nav.main-desktop button:hover span {
  box-shadow: inset 0 0 3rem #561848;
  text-shadow: 0 0 1.5rem #ffe39c;
}
nav.main-desktop .dropdown > button svg {
  height: 0.8em;
  position: relative;
  top: 3px;
  transition: transform 250ms ease;
}
nav.main-desktop .dropdown .dropdown-menu {
  transform: rotateX(-90deg);
  transform-origin: top center;
  opacity: 0.3;
  transition: transform 250ms ease, opacity 250ms ease;
}
nav.main-desktop .dropdown:focus-within:not(.dropdown-js) > button svg, nav.main-desktop .dropdown.dropdown-js.is-active > button svg {
  transform: rotate(90deg);
}
nav.main-desktop .dropdown:focus-within:not(.dropdown-js) > .dropdown-menu, nav.main-desktop .dropdown.dropdown-js.is-active > .dropdown-menu {
  transform: rotateX(0);
  opacity: 1;
}
nav.main-desktop .dropdown-menu {
  position: absolute;
  left: 0;
  right: 0;
}
nav.main-desktop .dropdown-content {
  display: grid;
  border-top: 2px solid var(--light-border);
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.08) 0px 24px 30px 4px;
  border-bottom-left-radius: var(--small-border-radius);
  border-bottom-right-radius: var(--small-border-radius);
  padding: var(--space-size-md);
  margin-top: 1.5rem;
  background: var(--bright-background);
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 1em;
}
nav.main-desktop .dropdown-content header {
  color: var(--light-text);
  text-transform: uppercase;
  font-size: var(--font-size-sm);
}
nav.main-desktop .dropdown-content section.highlight {
  padding: var(--space-size-md);
  padding-right: var(--space-size-lg);
  text-align: center;
}
nav.main-desktop .dropdown-content section.highlight .media {
  width: 100%;
  aspect-ratio: 1.5/1;
  overflow: hidden;
  border-radius: var(--small-border-radius);
}
nav.main-desktop .dropdown-content section.highlight .media img {
  object-fit: cover;
  object-position: center;
  height: 100%;
  width: 100%;
  transition: transform 250ms ease;
}
nav.main-desktop .dropdown-content section.highlight a:hover img {
  transform: scale(1.1);
}
nav.main-desktop .dropdown-content ul {
  list-style: none;
  padding: 0;
}
nav.main-desktop .dropdown-content ul li {
  margin: var(--space-size-xs) 0;
}
nav.main-desktop .dropdown-content ul a {
  text-decoration: none;
  color: var(--dark-text);
  opacity: 0.8;
  font-weight: bold;
}
nav.main-desktop .dropdown-content ul a:hover {
  opacity: 1;
  text-decoration: underline;
}

.main-mobile > button.mobile-menu-button {
  background: none;
  border: 0;
  color: var(--dark-border);
  cursor: pointer;
  display: flex;
  outline: 1px solid rgba(255, 255, 255, 0);
  padding: 0;
  text-decoration: none;
  text-underline-offset: 0.3ex;
  transition: outline 200ms ease;
}
.main-mobile > button.mobile-menu-button svg {
  width: 2em;
}
.main-mobile > button.mobile-menu-button:hover {
  outline: 1px solid var(--primary);
}
.main-mobile .mobile-dropdown-content .dropdown-menu-button {
  width: 100%;
  border: 0;
  background: var(--bright-background);
  color: var(--primary);
  font-size: var(--font-size-lg);
  font-weight: bold;
  padding: var(--space-size-sm);
  cursor: pointer;
  text-align: left;
  border-top: 1px solid var(--light-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-mobile .mobile-dropdown-content .dropdown-menu-button svg {
  width: 1rem;
  margin-right: var(--space-size-sm);
}
.main-mobile .mobile-dropdown-content .dropdown-menu-button:hover {
  background: var(--background);
}
.main-mobile:focus-within:not(.dropdown-js) .mobile-menu, .main-mobile.dropdown-js.is-active .mobile-menu {
  transform: translateX(0);
}
.main-mobile .mobile-menu {
  position: absolute;
  top: 64px;
  right: 0;
  background: var(--bright-background);
  z-index: 200;
  max-width: 400px;
  width: 100%;
  transform: translateX(2000px);
  transition: transform 200ms ease;
}
.main-mobile .mobile-menu section {
  margin-bottom: var(--space-size-md);
}
.main-mobile .mobile-menu section:last-of-type {
  margin-bottom: var(--space-size-xs);
}
.main-mobile .mobile-menu .inner-mobile-menu {
  border-top: 1px solid var(--light-border);
  padding: var(--space-size-sm);
  font-size: var(--font-size-lg);
}
.main-mobile .mobile-menu .inner-mobile-menu header {
  font-size: var(--font-size-lg);
  font-weight: bold;
  margin: 0;
}
.main-mobile .mobile-menu .inner-mobile-menu ul {
  margin: 0;
}

header.top {
  background: var(--primary);
  z-index: 100;
  position: relative;
}
header.top nav.sub {
  display: none;
  font-size: var(--font-size-md);
  padding: 0.25rem;
}
@media screen and (min-width: 760px) {
  header.top nav.sub {
    display: block;
  }
}
header.top nav.sub .wrapper {
  display: flex;
  column-gap: 0.8rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: end;
}
header.top nav.sub a {
  text-decoration: none;
  opacity: 0.8;
}
header.top nav.sub a:hover {
  text-decoration: underline;
  opacity: 1;
}

.logo-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-top: var(--space-size-sm);
  padding-bottom: var(--space-size-sm);
  container-type: inline-size;
  container-name: logo-bar-container;
}
.logo-bar nav.main-desktop {
  display: none;
}
.logo-bar nav.main-mobile {
  display: block;
}
.logo-bar h1 {
  line-height: 1rem;
  margin: 0;
  max-width: calc(100% - 40px);
  padding: 0;
}
.logo-bar h1 img {
  height: auto;
  max-height: 55px;
}
@media screen and (min-width: 760px) {
  .logo-bar nav.main-desktop {
    display: flex;
  }
  .logo-bar nav.main-mobile {
    display: none;
  }
}
@media screen and (min-width: 760px) {
  .logo-bar {
    padding-top: var(--space-size-lg);
    padding-bottom: var(--space-size-lg);
  }
}

/*# sourceMappingURL=style.css.map */
